* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: #f6f6f6;
  color: #222;
}

header {
  background: #0a7b7d;
  padding: 15px;
  color: white;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}

.logo {
  font-size: 24px;
}

nav {
  display: flex;
  justify-content: space-around;
}

nav a {
  color: white;
  text-decoration: none;
}

.about {
  background: white;
  margin: 40px auto;
  padding: 40px;
  width: 80%;
  display: grid;
  gap: 20px;
}

.about iframe {
  width: 100%;
  height: 250px;
}

.socials a {
  margin-right: 10px;
  text-decoration: none;
  color: #0a7b7d;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
